home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / fragrouter / Libnet-0.99b / test / Random / Makefile.html < prev    next >
Encoding:
Makefile  |  1999-07-26  |  637 b   |  30 lines

  1. #
  2. #   $Id: Makefile.in,v 1.1.1.1 1999/05/18 15:33:43 dugsong Exp $
  3. #
  4. #   Libnet simple testcode makefile
  5. #   Copyright (c) 1998, 1999 Mike D. Schiffman <mike@infonexus.com>
  6. #                            route|daemon9 <route@infonexus.com>
  7. #   @configure_input@
  8.  
  9. CC          =   @CC@
  10. CFLAGS      =   @CFLAGS@
  11. OBJECTS     =   prand_trials.o
  12. DEFINES     +=  @DEFS@
  13. LIBS        =   -L../../lib/ -lnet @ADDITIONAL_LIBS@
  14.  
  15. .c.o:
  16.     $(CC) $(CFLAGS) $(DEFINES) -c $< -o $@
  17.  
  18. all:    prand_trials
  19.  
  20. prand_trials: $(OBJECTS)
  21.     $(CC) prand_trials.o $(LIBS) -o ./prand_trials
  22.  
  23. clean:
  24.     rm -f *.core prand_trials *.o
  25.  
  26. distclean: clean
  27.     rm -f Makefile
  28.  
  29. # EOF
  30.